Created: 2022-04-17
Tags: #literature
How communication happens between webserver and client-user
Usually only clients make HTTP requests, and only to servers. Servers respond to a client's HTTP request. A server can also populate data into a client cache, in advance of it being requested, through a mechanism called a server push.
When requesting a file via HTTP, clients must provide the file's URL.
The web server must answer every HTTP request, at least with an error message.
HTTP specifies how to transfer hypertext (linked web documents) between two computers.
What is an HTTP
Features of HTTP
Two commands supported by HTTP include GET and POST.
Both of these are requests we can make to a server,
Ways we(client) can send request to webserver - Get-Post-Put-Delete
example of RESPONSE from WEBSERVER